Overview
It is recommended to read multiple scales in dxcharts-lite article first to better understand it's core functionality.
Moving data series in dxcharts-react is designed only for studies data series and with specific behavior, if you want to move some other data series without this behavior you should use dxcharts-lite pane manager method moveDataSeriesToPane
dxcharts-react
API allows to move study data series inbetween panes and also move to any scale: new or already existing within a single pane with these methods:
-
moveStudyToPane
- move study data series to the pane above or below, there are two non-ordinary scenarios if using this method:- Pane is not created yet, then it creates a new one
- Target pane is the main "chart" pane with candles series, if so, the new scale for the study will be created if this study has
overlaying
property asfalse
by default, otherwise, it will be moved to the same as the main candle series scale
-
moveStudyToNewScaleWithinChartPane
- move study data series to the new scale to the left or right of a chart -
moveStudyToExistingScaleWithinChartPane
- move study data series to the existing y axis scale
and could be found on dxcharts-react
API page